/* SAFE TO EDIT - CSS VARIABLES */
:root {
    --bg-image: url('pages two/personal/botwone.jpg');
    --title-font-size: 7vw;
    --side-image: url('/IMG/COVERS/mejacket.jpg');
  --box-bg: rgba(255, 252, 245, 0.92);
}

html, body {
  background-image: url('/pages two/personal/botwone.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* subtle parallax feel */
  background-repeat: no-repeat;
}


/* THEME SWITCHER */
#flag {
    display: flex;
    flex-direction: column;
    width: 12vw;
    margin: 0.5em auto;
}

@font-face {
    font-family: Pretty Kelly;
    src: url(https://dl.dropbox.com/s/rqxfzjivgousq18/PrettyKelly.ttf?dl=0);
}

@font-face {
    font-family: National Park;
    src: url(https://dl.dropbox.com/s/jox00bymodcheoy/NationalPark-Regular.otf?dl=0);
}
@font-face {
    font-family: "Cooper Black";
    src: url("/js/COOPBL.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* BASE STYLING */
*, *::before, *::after {
    box-sizing: border-box;
}


/* Moon buddy */
.side {
  position: relative; /* anchor point */
}
.moon-buddy.kick {
  animation: moon-kick 200ms ease-out forwards;
}

@keyframes moon-kick {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.moon-buddy:active {
  transform: scale(0.95); /* tiny click animation */
}

.moon-buddy {
  position: absolute;
  top: -36px;
  right: -35px;

  width: 100px;
  height: 100px;

  background-image: url("/IMG/MOO.png"); /* <-- your moon image */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: transform 0.15s ease;



  animation: moon-float 5s ease-in-out infinite;
}

  

@keyframes moon-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}






#gif-box {
  width: 225px;
  height: 225px;
  border-radius: 6px;
  border: 1px solid hotpink;
  box-shadow: 0 0 3px rgba(255, 105, 180, 0.3);
  overflow: hidden;
  cursor: pointer;
  background: #ffe6f2;
  padding: 0px;

  display: flex;
  align-items: center;
  justify-content: center;
}

  #gif-box img {
  width: 100%;
  max-width: 210px;   /* ← HARD WIDTH LIMIT */
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

#gif-box:active {
  transform: scale(0.97);
}



#shameless-section {
  width: 100%;
  max-width: 100%;
  height: 138px;

  margin: 28px auto;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background-size: cover;
  background-position: center;

  border-radius: 2px;


}
#image-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.15;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;

}




blockquote {
    border-left: 1px solid var(--main);
    padding-left: 0.5em;
    margin-left: 1em;
    font-style: italic;
}

button {
    transition: all .3s ease-in-out;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

button:hover, button.active {
    filter: brightness(140%);
}

mark {
    background-color: var(--main);
    color: var(--background);
    padding: 0 5px;
    border-radius: 2px;
}

figcaption {
    font-style: italic;
    font-size: smaller;
}

a {
    color: var(--main);
}

a:hover {
    filter: brightness(130%);
}

ul {
    margin: 0;
}

hr {
    border: 1px solid var(--muted);
}

code {
    background-color: var(--main);
    color: var(--background);
    padding: 0 3px;
    border-radius: 3px;
}

.img-fluid {
    max-width: 25rem;
    height: auto;
}

p {
    margin: 5px 0 10px 5px;
}

h2, h3, h4, h5, h6 {
    margin: 0.2em;
    font-family: Pretty Kelly;
}
h1 {
    font-family: "Cooper Black", serif;
    font-size: 1.4em; 
    margin: 0.2em;
    font-weight: normal; /* IMPORTANT */
    text-transform: uppercase;
}


::selection {
    background-color: var(--muted);
    color: var(--background)
}

audio,
audio::-webkit-media-controls-panel {
    max-width: 12vw;
    background-color: var(--main);
    filter: brightness(120%);
    border-radius: 30px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	position: fixed;
	right: 12px;
	z-index: 1;
}

::-webkit-scrollbar-track {
	box-shadow: 0;
	border-radius: 0px;
	background-color: var(--background);
}

.post ::-webkit-scrollbar-track {
	border-left: 0px solid var(--main);
}

::-webkit-scrollbar-thumb {
	background: var(--muted);
	border-radius: 0px;
}

/* WRAPPERS */
.wrapper {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    margin: 0 auto 5vh auto;
    width: 70vw;
    padding: 15px;
    gap: 2em;
}


.side-wrapper > div,
.main {
  backdrop-filter: blur(2px);
}
.side-wrapper > div::after,
.main::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(120, 150, 130, 0.25),
    0 6px 20px rgba(60, 80, 70, 0.25);
  pointer-events: none;
}


.side-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 15em;
    gap: 2em;
}

/* BOXES & SIDEBAR */
.side-wrapper>div, .main {
    background-color: var(--box-bg);
    border: 2px solid var(--main);
    box-shadow: 0.2em 0.2em var(--muted);
    padding: 1em;
    border-radius: 5px;
}

.main {
    flex-grow: 1;
}

.side p {
    text-align: center;
    margin: 0.5em;
}

#side-img {
    height: 11em;
    max-width: 100%;
    background: var(--side-image) center / contain no-repeat;
    margin: 0.5em auto;
}

/* NAVLINKS */
#navlinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
}

#navlinks a {
    background-color: var(--main);
    color: var(--background);
    padding: 8px;
    margin: 5px;
    border-radius: 20px;
    text-decoration: none;
}

/* PAGE TITLE */
ul#title {
    padding-left: 0;
    margin: 0 auto;
    width: 55vw;
    font-size: var(--title-font-size);
    flex-wrap: wrap;
    display: flex;
    flex: auto 1 1;
    justify-content: center;
    font-family: Pretty Kelly;
    -webkit-text-stroke: 1px var(--main);
}

#title li {
    display: inline-flex;
    margin: 0.25em;
    background-size: 200vw auto;
    background-image: repeating-linear-gradient(to right, #cf3480, #d92f38, #f76d2e, #e9d968, #439d81, #0fa9c3, #3e254d);
    -webkit-animation: rainbow 10s linear reverse infinite;
    animation: rainbow 10s linear reverse infinite;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text; 
}

#title li:nth-child(3n + 0) { transform: rotate(20deg) }

#title li:nth-child(3n + 1) { transform: rotate(-20deg) }

#title li:nth-child(3n + 2) { transform: rotate(10deg) }

@keyframes rainbow { 0% { background-position: 0% 50% } 50% { background-position: 100% 50% } 100% { background-position: 0% 50% } }

/* BADGES */
#badge-img {
    display: grid;
    margin: auto auto;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    align-items: center;
    justify-items: center;
}

  /* MOBILE STYLING */
  @media only screen and (max-width: 768px) {
      .wrapper {
          flex-direction: column;
          width: 100%;
          padding: 10;
      }

      audio, audio::-webkit-media-controls-panel {
          max-width: 100%;
      }

      #flag {
          width: 50vw;
      }

      figure {
          margin: 0;
      }

      .img-fluid {
          max-width: 100%;
      }

      .side-wrapper, .main {
          width: 90vw;
          margin: 0 auto;
      }

      ul#title {
          width: 100vw;
          font-size: calc(var(--title-font-size) * 1.6);
          margin: 3vh auto;
      }
  }
  
  
  
  
    
    
    
    
    
    
    
    



 /* Logo centered, no text */
    .logo{

  margin-top: -30px; /* pull it up slightly */
      display:flex;
      justify-content:center;
      align-items:center;
    }
    @keyframes floaty {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.logo img {
  animation: floaty 4s ease-in-out infinite;
}

    .logo img{
      width:680px;
      max-width:310%;
      height:auto;
      object-fit:contain;
      display:block;
    }


/* HERO SLANTED SECTION */
.hero-slant-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin: -20px 0 -30px;
  flex-wrap: nowrap; /* NEVER STACK */
}

/* Your image */
.hero-me {
  width: 300px;
  max-width: 40vw;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border-radius: 14px;
}

/* RIGHT COLUMN */
.slant-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
}

/* Angle definitions */
.slant-up img { transform: rotate(-12deg); }
.slant-mid img { transform: rotate(1deg); }
.slant-down img { transform: rotate(12deg); }

/* Image sizes */
.slant img {
  width: 150px;
  max-width: 30vw;
  height: auto;
  transition: transform 0.2s ease;
}

/* Hover */
.slant img:hover {
  transform: scale(1.03) rotate(var(--r));
}
/* MOBILE — still side-by-side but smaller */
@media (max-width: 600px) {
  .hero-me {
    width: 230px;
    max-width: 65vw;
  }

  .slant img {
    width: 105px;
    max-width: 28vw;
  }

  .hero-slant-wrap {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  header.logo img {
    width: 95% !important;
    max-width: 95% !important;
    height: auto !important;
  }
}

      
    
    
    
     /* VIDEO WRAPPER WITH PINK OUTLINE */
    .video-wrap{
      width:100%;
      max-width:880px;
      position:relative;
      border:6px solid var(--bubble-pink);
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 0 22px rgba(255,134,221,0.4);
    }
    .video-wrap iframe{
      width:100%;
      aspect-ratio:16/9;
      border:none;
      display:block;
    }
    


    /* Sticker Links */
    a.poplink{
      display:inline-block;
      background:var(--ink);
      color:var(--paper);
      padding:10px 16px;
      border-radius:10px;
      font-weight:900;
      text-decoration:none;
      font-family:'Anton', Impact, sans-serif;
      letter-spacing:1px;
      border:4px solid var(--paper);
      transition:transform .12s ease;
    }
    a.poplink:hover{
      transform:scale(1.08);
    }

    /* Sub / Secondary Panel */
    .sub{
      min-height:140px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      padding:18px 28px;
    }

    /* BW clickable image tiles */
    .bw-grid{
      display:grid;
      gap:14px;
      grid-template-columns: repeat(3, 1fr);
      margin-top:12px;
    }

    .bw-tile{
      position:relative;
      height:110px;
      border-radius:14px;
      overflow:hidden;
      border:4px dashed var(--ink);
      cursor:pointer;
      display:block;
      background:#fff;
      transition:transform .12s ease, box-shadow .12s ease;
    }

    .bw-tile img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      filter: grayscale(100%);
    }

    .bw-tile span{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:6px;
      font-weight:900;
      font-family:'Anton', Impact, sans-serif;
      color:#FF84C1;
      text-shadow:2px 2px 0 var(--paper);
      font-size:15px;
      z-index:2;
      pointer-events:none;
    }

    /* Pop Sticker Hover */
    .bw-tile:hover{
      transform:scale(1.06);
      box-shadow:6px 6px 0 var(--bubble-pink);
      border-color:var(--bubble-pink);
    }

    /* GIF COLUMN */
    .gif-col{
      width:220px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
      text-align:center;
 

    }
    .gif-col a{
      display:block;
      width:100%;
    }
    .gif-col img{
      width:100%;
      aspect-ratio:1/1;
      object-fit:cover;
      border-radius:12px;
      border:4px solid var(--ink);
      outline:4px solid var(--ink);
      outline-offset:-4px;
      cursor:pointer;
      
           background:#FFB1DC;
    }
    .gif-caption{
      font-size:12px;
      font-weight:700;
      color:#FF84C1;
    }


    .foot{
      font-size:12px;
      color:#111;
      opacity:0.85;
    }

    /* MOBILE CHANGES */
    @media(max-width:900px){
      .wrap{padding:0;margin:0;}
      .card{border-radius:0;border-left:none;border-right:none;outline:none;box-shadow:none;}
      .hero{padding:18px;}
      .video-wrap{border-width:4px;}
      .bw-grid{grid-template-columns:repeat(2,1fr);}
      .gif-col{width:160px;}
    }

    @media(max-width:600px){
      .sub{flex-direction:column;}
      .gif-col{width:100%;}
      .gif-col img{max-width:260px;}
      .bw-grid{width:100%;}
      .card{padding:22px;}
    }

/*wowoldbelow*/
    @media (max-width:900px){
      .wrap{padding:16px;margin:18px auto;}
      .hero{min-height:260px;}
      .bw-grid{grid-template-columns:repeat(2,1fr);}
      .side{display:none;}
    }

    @media (max-width:560px){
      .bw-grid{grid-template-columns:1fr;}
      .card{border-radius:18px;}
      .hero{min-height:200px;}
}

    /* Halftone grain */
    .card::before{
      content:'';
      position:absolute;inset:0;border-radius:inherit;pointer-events:none;
      background-image: radial-gradient(circle at 10px 10px, rgba(0,0,0,0.02) 1px, transparent 2px);
      background-size:6px 6px;
      mix-blend-mode:multiply;
      opacity:0.6;
    }
@media (max-width: 600px) {
  a .logo {
    width: 95%;
    margin: 0 auto;
  }

  a .logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}





    
  /* Cassette in sidebar */
.cassette-box {
  text-align: center;
}
/* =========================
   ALBUM + BOTTOM CASSETTE
   ========================= */

.album-slot {
  position: relative;
  width: 220px;
  height: 100%;
  margin: 0 auto;
  padding-top: 34px;   
  overflow: visible;
}


/* Album cover */
.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border-radius: 1px;
}

#cassette-container {
  --hidden: -55%;
  --peek: -55%;
  --hover: -50%;

  position: absolute;
  left: 50%;
  top: 10px;
  transform: translate(-50%, var(--hidden));
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  z-index: 1;
  cursor: pointer;
}

/* Hover = almost fully out */
.album-slot:hover #cassette-container {
  transform: translate(-50%, var(--hover));
}

/* Playing but not hovered = medium out */
#cassette-container.playing {
  transform: translate(-50%, var(--peek));
}

/* Playing + hover = fully out */
.album-slot:hover #cassette-container.playing {
  transform: translate(-50%, var(--hover));
}

/* Cassette image */
#cassette {
  width: 160px;
  image-rendering: pixelated;
  transform-origin: 50% 60%;
}





/* Subtle motion while playing */
#cassette-container.playing #cassette {
  animation: tapeMystic 4s ease-in-out infinite;
}

@keyframes tapeMystic {
  0% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
  100% { transform: translateY(0); }
}

/* Tiny nudge when clicked */
#cassette-container.kick {
  animation: tapeKick 180ms ease-out forwards;
}

@keyframes tapeKick {
  0% { transform: translate(-50%, var(--peek)); }
  50% { transform: translate(-50%, calc(var(--peek) - 6px)); }
  100% { transform: translate(-50%, var(--peek)); }
}

/* Song title on cassette */
#song-title {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  font-size: 0.43em;
  font-family: monospace;
  text-align: center;
  color: #111;
  pointer-events: none;
}







/* Video controls directly under player */
.video-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
}

/* Centered Applause / Boo buttons */
.reaction-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.reaction-buttons .poplink {
    background: #ff85c1;       /* pink background */
    color: #fff;
    padding: 5px 12px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease;
}

.reaction-buttons .poplink:hover {
    transform: scale(1.1);
    background: #ff4aa3;
}

/* Tiny channel changer on the far right */
#changeChannel {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
}

#changeChannel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.15s ease;
}

#changeChannel:hover img {
    transform: rotate(20deg) scale(1.1);
}

/* Video caption below buttons */
.video-caption {
    margin-top: 6px;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}


  #cover-img {
    max-width: 100%;
}

  
  